Users Pricing

forum

home / developersection / forums / unreachable code detected return value

Unreachable Code Detected Return Value

Anonymous User 2176 15 May 2013
Hi Guys

How to return value with this issue? Help me please.

protected string SendState(Object ID_DIP,Object ID_SEQ,Object MODUL)
{
    try
    {
        ViewState["ssDIP"] = ID_DIP.ToString();
        ViewState["ssSEQ"] = ID_SEQ.ToString();
        ViewState["ssMOD"] = MODUL.ToString();
        return ID_DIP.AsString();
        return ID_SEQ.AsString();
        return MODUL.ToString();
    }
    catch (Exception)
    {
        return "";
    }
}

Thanks 

I am a content writter !


1 Answers